home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / DispMod.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.2 KB  |  49 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _DISPMOD_
  4. #define _DISPMOD_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13.  
  14. interface  ODDispatchModule;
  15.  
  16. //=====================================================================================
  17. // Classes used by this interface
  18. //=====================================================================================
  19.  
  20. interface  ODSession;
  21.  
  22. //=====================================================================================
  23. // ODDispatchModule
  24. //=====================================================================================
  25.  
  26. interface ODDispatchModule : ODObject
  27. {
  28.     void InitDispatchModule(in ODSession session);
  29.  
  30.        ODBoolean Dispatch(inout ODEventData event, inout ODEventInfo eventInfo);
  31.  
  32. #ifdef __SOMIDL__
  33.     implementation
  34.     {
  35.         majorversion = 1; minorversion = 0;
  36.  
  37.           functionprefix = ODDispatchModule;
  38.         
  39.         releaseorder:
  40.             InitDispatchModule,
  41.             Dispatch;
  42.     
  43.     };
  44. #endif //# __SOMIDL__
  45. };
  46.  
  47. #endif //# _DISPMOD_
  48.  
  49.